home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c-part2 / 11574 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  1019 b 

  1. Path: newsserv.zdv.uni-tuebingen.de!news
  2. From: Michael.Will@student.uni-tuebingen.de (Michael Will)
  3. Newsgroups: comp.lang.c
  4. Subject: Re: How to make it BEEP ?
  5. Date: 25 Mar 1996 10:58:26 +0100
  6. Organization: x
  7. Sender: zxmgv07@desaster.student.uni-tuebingen.de
  8. Message-ID: <m37mw9qyt9.fsf@desaster.student.uni-tuebingen.de>
  9. References: <4ihuuh$6ul@hatathli.csulb.edu> <4in0ih$o43@zeus.intellinet.com>
  10.     <4in5r1$j90@druid.borland.com> <4inmv1$ljj@sunburst.ccs.yorku.ca>
  11.     <3150380D.1511@willows.com> <danpop.827519148@rscernix>
  12. NNTP-Posting-Host: zxmgv07.extern.uni-tuebingen.de
  13. In-reply-to: danpop@mail.cern.ch's message of 22 Mar 96 18:25:48 GMT
  14. X-Newsreader: Gnus v5.0.15
  15.  
  16. In article <danpop.827519148@rscernix> danpop@mail.cern.ch (Dan Pop) writes:
  17.  
  18. > >> C function on unix that I can use to make a beep sound. 
  19. > >You could use printf ( "%c", 0x07 );
  20. > If you're clueless enough :-)
  21. give him a clue then:
  22.  
  23. #define BEEP_CHARACTER (char) 0x07
  24.  
  25.     putchar (BEEP_CHARACTER);
  26.  
  27.  
  28. Or what would you propose?
  29.  
  30. Cheers, Michael Will
  31.